This command is commonly used to get the MethodTable or EEClass addresses
for a given class name. With these addresses you can use the DumpMT
and DumpClass commands, respectively, to get additional information about
the class. When given a method name, the command is used to get the associated
MethodDesc address for the method. With a MethodDesc address you can use
the DumpMD command to get additional information about the method.
Name2EE(done)
Finds the memory address of EE data given a class or method name.
Syntax
!Name2EE <module name> <item name>
Parameters
<module name>
Name of .dll or .exe file that the class or method is
defined in, including the file name extension.
<item name>
Fully qualified class name or fully qualified method name.
Example
0:003> !Name2EE basedebug.exe basedebug.MyClass
--------------------------------------
MethodTable: 003751a4
EEClass: 031410ec
Name: basedebug.MyClass
0:003> !name2ee basedebug.exe basedebug.MyClass.MyFunction
--------------------------------------
MethodDesc: 375190
Name: [DEFAULT] [hasThis] String basedebug.MyClass.MyFunction()
-----------------------
Comments